home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / ntpath.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  12KB  |  437 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Common pathname manipulations, WindowsNT/95 version.
  5.  
  6. Instead of importing this module directly, import os and refer to this
  7. module as os.path.
  8. '''
  9. import os
  10. import stat
  11. import sys
  12. __all__ = [
  13.     'normcase',
  14.     'isabs',
  15.     'join',
  16.     'splitdrive',
  17.     'split',
  18.     'splitext',
  19.     'basename',
  20.     'dirname',
  21.     'commonprefix',
  22.     'getsize',
  23.     'getmtime',
  24.     'getatime',
  25.     'getctime',
  26.     'islink',
  27.     'exists',
  28.     'lexists',
  29.     'isdir',
  30.     'isfile',
  31.     'ismount',
  32.     'walk',
  33.     'expanduser',
  34.     'expandvars',
  35.     'normpath',
  36.     'abspath',
  37.     'splitunc',
  38.     'curdir',
  39.     'pardir',
  40.     'sep',
  41.     'pathsep',
  42.     'defpath',
  43.     'altsep',
  44.     'extsep',
  45.     'devnull',
  46.     'realpath',
  47.     'supports_unicode_filenames']
  48. curdir = '.'
  49. pardir = '..'
  50. extsep = '.'
  51. sep = '\\'
  52. pathsep = ';'
  53. altsep = '/'
  54. defpath = '.;C:\\bin'
  55. if 'ce' in sys.builtin_module_names:
  56.     defpath = '\\Windows'
  57. elif 'os2' in sys.builtin_module_names:
  58.     altsep = '/'
  59.  
  60. devnull = 'nul'
  61.  
  62. def normcase(s):
  63.     '''Normalize case of pathname.
  64.  
  65.     Makes all characters lowercase and all slashes into backslashes.'''
  66.     return s.replace('/', '\\').lower()
  67.  
  68.  
  69. def isabs(s):
  70.     '''Test whether a path is absolute'''
  71.     s = splitdrive(s)[1]
  72.     if s != '':
  73.         pass
  74.     return s[:1] in '/\\'
  75.  
  76.  
  77. def join(a, *p):
  78.     '''Join two or more pathname components, inserting "\\" as needed'''
  79.     path = a
  80.     for b in p:
  81.         b_wins = 0
  82.         if path == '':
  83.             b_wins = 1
  84.         elif isabs(b):
  85.             if path[1:2] != ':' or b[1:2] == ':':
  86.                 b_wins = 1
  87.             elif (len(path) > 3 or len(path) == 3) and path[-1] not in '/\\':
  88.                 b_wins = 1
  89.             
  90.         
  91.         None if b_wins else b[0] in '/\\'
  92.         None if path[-1] == ':' else b[0] in '/\\'
  93.         path += '\\'
  94.     
  95.     return path
  96.  
  97.  
  98. def splitdrive(p):
  99.     '''Split a pathname into drive and path specifiers. Returns a 2-tuple
  100. "(drive,path)";  either part may be empty'''
  101.     if p[1:2] == ':':
  102.         return (p[0:2], p[2:])
  103.     
  104.     return ('', p)
  105.  
  106.  
  107. def splitunc(p):
  108.     """Split a pathname into UNC mount point and relative path specifiers.
  109.  
  110.     Return a 2-tuple (unc, rest); either part may be empty.
  111.     If unc is not empty, it has the form '//host/mount' (or similar
  112.     using backslashes).  unc+rest is always the input path.
  113.     Paths containing drive letters never have an UNC part.
  114.     """
  115.     if p[1:2] == ':':
  116.         return ('', p)
  117.     
  118.     firstTwo = p[0:2]
  119.     if firstTwo == '//' or firstTwo == '\\\\':
  120.         normp = normcase(p)
  121.         index = normp.find('\\', 2)
  122.         if index == -1:
  123.             return ('', p)
  124.         
  125.         index = normp.find('\\', index + 1)
  126.         if index == -1:
  127.             index = len(p)
  128.         
  129.         return (p[:index], p[index:])
  130.     
  131.     return ('', p)
  132.  
  133.  
  134. def split(p):
  135.     '''Split a pathname.
  136.  
  137.     Return tuple (head, tail) where tail is everything after the final slash.
  138.     Either part may be empty.'''
  139.     (d, p) = splitdrive(p)
  140.     i = len(p)
  141.     while i and p[i - 1] not in '/\\':
  142.         i = i - 1
  143.     head = p[:i]
  144.     tail = p[i:]
  145.     head2 = head
  146.     while head2 and head2[-1] in '/\\':
  147.         head2 = head2[:-1]
  148.     if not head2:
  149.         pass
  150.     head = head
  151.     return (d + head, tail)
  152.  
  153.  
  154. def splitext(p):
  155.     '''Split the extension from a pathname.
  156.  
  157.     Extension is everything from the last dot to the end.
  158.     Return (root, ext), either part may be empty.'''
  159.     i = p.rfind('.')
  160.     if i <= max(p.rfind('/'), p.rfind('\\')):
  161.         return (p, '')
  162.     else:
  163.         return (p[:i], p[i:])
  164.  
  165.  
  166. def basename(p):
  167.     '''Returns the final component of a pathname'''
  168.     return split(p)[1]
  169.  
  170.  
  171. def dirname(p):
  172.     '''Returns the directory component of a pathname'''
  173.     return split(p)[0]
  174.  
  175.  
  176. def commonprefix(m):
  177.     '''Given a list of pathnames, returns the longest common leading component'''
  178.     if not m:
  179.         return ''
  180.     
  181.     prefix = m[0]
  182.     for item in m:
  183.         for i in range(len(prefix)):
  184.             if prefix[:i + 1] != item[:i + 1]:
  185.                 prefix = prefix[:i]
  186.                 if i == 0:
  187.                     return ''
  188.                 
  189.                 break
  190.                 continue
  191.         
  192.     
  193.     return prefix
  194.  
  195.  
  196. def getsize(filename):
  197.     '''Return the size of a file, reported by os.stat()'''
  198.     return os.stat(filename).st_size
  199.  
  200.  
  201. def getmtime(filename):
  202.     '''Return the last modification time of a file, reported by os.stat()'''
  203.     return os.stat(filename).st_mtime
  204.  
  205.  
  206. def getatime(filename):
  207.     '''Return the last access time of a file, reported by os.stat()'''
  208.     return os.stat(filename).st_atime
  209.  
  210.  
  211. def getctime(filename):
  212.     '''Return the creation time of a file, reported by os.stat().'''
  213.     return os.stat(filename).st_ctime
  214.  
  215.  
  216. def islink(path):
  217.     '''Test for symbolic link.  On WindowsNT/95 always returns false'''
  218.     return False
  219.  
  220.  
  221. def exists(path):
  222.     '''Test whether a path exists'''
  223.     
  224.     try:
  225.         st = os.stat(path)
  226.     except os.error:
  227.         return False
  228.  
  229.     return True
  230.  
  231. lexists = exists
  232.  
  233. def isdir(path):
  234.     '''Test whether a path is a directory'''
  235.     
  236.     try:
  237.         st = os.stat(path)
  238.     except os.error:
  239.         return False
  240.  
  241.     return stat.S_ISDIR(st.st_mode)
  242.  
  243.  
  244. def isfile(path):
  245.     '''Test whether a path is a regular file'''
  246.     
  247.     try:
  248.         st = os.stat(path)
  249.     except os.error:
  250.         return False
  251.  
  252.     return stat.S_ISREG(st.st_mode)
  253.  
  254.  
  255. def ismount(path):
  256.     '''Test whether a path is a mount point (defined as root of drive)'''
  257.     (unc, rest) = splitunc(path)
  258.     if unc:
  259.         return rest in ('', '/', '\\')
  260.     
  261.     p = splitdrive(path)[1]
  262.     if len(p) == 1:
  263.         pass
  264.     return p[0] in '/\\'
  265.  
  266.  
  267. def walk(top, func, arg):
  268.     """Directory tree walk with callback function.
  269.  
  270.     For each directory in the directory tree rooted at top (including top
  271.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  272.     dirname is the name of the directory, and fnames a list of the names of
  273.     the files and subdirectories in dirname (excluding '.' and '..').  func
  274.     may modify the fnames list in-place (e.g. via del or slice assignment),
  275.     and walk will only recurse into the subdirectories whose names remain in
  276.     fnames; this can be used to implement a filter, or to impose a specific
  277.     order of visiting.  No semantics are defined for, or required of, arg,
  278.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  279.     a filename pattern, or a mutable object designed to accumulate
  280.     statistics.  Passing None for arg is common."""
  281.     
  282.     try:
  283.         names = os.listdir(top)
  284.     except os.error:
  285.         return None
  286.  
  287.     func(arg, top, names)
  288.     exceptions = ('.', '..')
  289.     for name in names:
  290.         if name not in exceptions:
  291.             name = join(top, name)
  292.             if isdir(name):
  293.                 walk(name, func, arg)
  294.             
  295.         isdir(name)
  296.     
  297.  
  298.  
  299. def expanduser(path):
  300.     '''Expand ~ and ~user constructs.
  301.  
  302.     If user or $HOME is unknown, do nothing.'''
  303.     if path[:1] != '~':
  304.         return path
  305.     
  306.     i = 1
  307.     n = len(path)
  308.     while i < n and path[i] not in '/\\':
  309.         i = i + 1
  310.     if i == 1:
  311.         if 'HOME' in os.environ:
  312.             userhome = os.environ['HOME']
  313.         elif 'HOMEPATH' not in os.environ:
  314.             return path
  315.         else:
  316.             
  317.             try:
  318.                 drive = os.environ['HOMEDRIVE']
  319.             except KeyError:
  320.                 drive = ''
  321.  
  322.             userhome = join(drive, os.environ['HOMEPATH'])
  323.     else:
  324.         return path
  325.     return userhome + path[i:]
  326.  
  327.  
  328. def expandvars(path):
  329.     '''Expand shell variables of form $var and ${var}.
  330.  
  331.     Unknown variables are left unchanged.'''
  332.     if '$' not in path:
  333.         return path
  334.     
  335.     import string as string
  336.     varchars = string.ascii_letters + string.digits + '_-'
  337.     res = ''
  338.     index = 0
  339.     pathlen = len(path)
  340.     while index < pathlen:
  341.         c = path[index]
  342.         if c == "'":
  343.             path = path[index + 1:]
  344.             pathlen = len(path)
  345.             
  346.             try:
  347.                 index = path.index("'")
  348.                 res = res + "'" + path[:index + 1]
  349.             except ValueError:
  350.                 res = res + path
  351.                 index = pathlen - 1
  352.             except:
  353.                 None<EXCEPTION MATCH>ValueError
  354.             
  355.  
  356.         None<EXCEPTION MATCH>ValueError
  357.         if c == '$':
  358.             None if path[index + 1:index + 2] == '$' else None<EXCEPTION MATCH>ValueError
  359.             var = ''
  360.             index = index + 1
  361.             c = path[index:index + 1]
  362.             while c != '' and c in varchars:
  363.                 var = var + c
  364.                 index = index + 1
  365.                 c = path[index:index + 1]
  366.             if var in os.environ:
  367.                 res = res + os.environ[var]
  368.             
  369.             if c != '':
  370.                 res = res + c
  371.             
  372.         else:
  373.             res = res + c
  374.         index = index + 1
  375.     return res
  376.  
  377.  
  378. def normpath(path):
  379.     '''Normalize path, eliminating double slashes, etc.'''
  380.     path = path.replace('/', '\\')
  381.     (prefix, path) = splitdrive(path)
  382.     if prefix == '':
  383.         while path[:1] == '\\':
  384.             prefix = prefix + '\\'
  385.             path = path[1:]
  386.     elif path.startswith('\\'):
  387.         prefix = prefix + '\\'
  388.         path = path.lstrip('\\')
  389.     
  390.     comps = path.split('\\')
  391.     i = 0
  392.     while i < len(comps):
  393.         None if comps[i] in ('.', '') else prefix.endswith('\\')
  394.         i += 1
  395.     if not prefix and not comps:
  396.         comps.append('.')
  397.     
  398.     return prefix + '\\'.join(comps)
  399.  
  400.  
  401. def abspath(path):
  402.     '''Return the absolute version of a path'''
  403.     global abspath
  404.     
  405.     try:
  406.         _getfullpathname = _getfullpathname
  407.         import nt
  408.     except ImportError:
  409.         
  410.         def _abspath(path):
  411.             if not isabs(path):
  412.                 path = join(os.getcwd(), path)
  413.             
  414.             return normpath(path)
  415.  
  416.         abspath = _abspath
  417.         return _abspath(path)
  418.  
  419.     if path:
  420.         
  421.         try:
  422.             path = _getfullpathname(path)
  423.         except WindowsError:
  424.             pass
  425.         except:
  426.             None<EXCEPTION MATCH>WindowsError
  427.         
  428.  
  429.     None<EXCEPTION MATCH>WindowsError
  430.     path = os.getcwd()
  431.     return normpath(path)
  432.  
  433. realpath = abspath
  434. if hasattr(sys, 'getwindowsversion'):
  435.     pass
  436. supports_unicode_filenames = sys.getwindowsversion()[3] >= 2
  437.